7d0d8f625aba65e392df834329ee344be77e4e2d,stagemonitor-requestmonitor/src/main/java/org/stagemonitor/requestmonitor/RequestMonitor.java,RequestMonitor,trackExternalRequestMetrics,#String#T#,315
Before Change
.layer(externalRequestStats.getRequestType()).build())
.update(externalRequestStats.getExecutionTimeNanos(), NANOSECONDS);
}
metricRegistry.timer(name("response_time_server")
.tag("request_name", "All")
.layer(externalRequestStats.getRequestType()).build())
.update(externalRequestStats.getExecutionTimeNanos(), NANOSECONDS);
}
// the difference to ElasticsearchExternalRequestReporter is that the
After Change
.build(requestName, externalRequestStats.getRequestType()))
.update(externalRequestStats.getExecutionTimeNanos(), NANOSECONDS);
}
metricRegistry.timer(responseTimeExternalRequestLayerTemplate
.build("All", externalRequestStats.getRequestType()))
.update(externalRequestStats.getExecutionTimeNanos(), NANOSECONDS);
}
// the difference to ElasticsearchExternalRequestReporter is that the